/* =================== Main Nav Bar Styling =================== */
#nav_block {
	/*background-color: #e39203;*/
	/*background-color: #F2D8AD;*/
	/*background-color: #ccae7c;*/
	background-color: #f7e9c9;
        display: inline-block;
	width: 100%;
        padding: 0;
	margin: 0;
	border-bottom: 1px solid #e39203;
	margin-bottom: -3px; /* I don't know why I need this, but without it there is a a 3px space between the menu and what follows it. */
}
/* Style overrides for links in the menus */
#nav_block a {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
        text-decoration: none;
	display: block;
}
/* Styling for all menu text */
#nav_block li {
	font-family: Arial, Helvetica, sans-serif;
        font-weight: normal;
        color: #FFFFFF;
        text-transform: uppercase;
}
#nav_block li:hover {
        background-color : #cc6600;
}
/* Top level menu item styling */
#nav_block > li {
	font-size: 9pt; /* Font size of top-level items */
	display: inline; 
	float: left;
        padding-top: 4px;
        padding-bottom: 3px;
        padding-left: 8px;
        padding-right: 8px;
	margin-right: 2px;
	background-color: #e39203;
	border-top: 3px solid #FEB100;
	/*border-right: 1px solid #FFF6E2;*/
	border-top-left-radius: 8px;
        border-top-right-radius: 8px;
}
/* Pull-down menu styling */
#nav_block ul {
	display: none;
	position: absolute;
	list-style-type: none;
	margin-left: -8px; /* This offsets the padding-left used in top level item styling. */
	margin-top: 3px; /* This offsets the padding-bottom used in the top level item styling. */
        padding-top: 4px;
        padding-bottom: 6px;
        z-index: 100; /* Make sure it's on top of anything below on the page. */
        border: 1px solid #890505;
        border-top: none;
        background-color: rgba(228,145,5,0.95);
}
/* Pull-down menu item styling */
#nav_block ul li {
	font-size: 10pt; /* Font size of pull-down menu items */
        text-transform: none;
        margin-left: -40px; /* To remove the li indenting */
        margin-right: 0px;
	/* These control the spacing of the items in the menu */
        padding-top: 3px; 
        padding-bottom: 3px;
        padding-left: 4px;
        padding-right: 4px;
}
/* Style 2nd level pull-down menus differently than first-level menus. */
#nav_block > li:hover > ul > li:hover > ul {
	left: 100%;
	margin-top: -15px; /* To move ul up to where it's even with parent */
	margin-left: 0px;
        border: 1px solid #890505;
        border-left: none;
        z-index: 101; /* Make sure it's on top of the first-level menu. */
}
/* Hover actions. This is what makes the pull-downs appear */
#nav_block > li:hover > ul, #nav_block > li:hover > ul > li:hover > ul {
	display: block;
}
/* =================== /Main Nav Bar Styling =================== */
